@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
ul{
    padding-left: 0;
}
nav {
    padding-block: 15px;
}

.sticky {
    width: 100%;
    position: fixed;
}

.flex {
    display: flex;
    align-items: center;
}

.logo {
    width: 150px;
}

.nav-item {
    padding: 0;
    padding-inline: 8px;
}

.nav-link {
    color: #959595;
    font-size: 16px;
    font-weight: 500;
}

.nav-item ion-icon {
    margin-top: 3px;
    font-size: 14px;
    color: #707070;

}

.navbar {
    background-color: #F9FAFD;
}

/* ABOUT US */
.about{
    padding-block: 100px;
}

.about h2{
    margin-top: 5%;
    font-size: 60px;
    font-weight: 600;
    color: #47536B;
    text-align: justify;
}
.about p {
    padding-right: 15px;
    font-size: 16px;
    font-weight: 400;
    color: #778bb3;
    margin-top: 30px;
}

.about-img{
    width: 100%;
    padding-top: 50px;
}
.about-img img{
    width: 100%;
}
/* six-part */

.six-part {
    margin: 100px 0;
    padding: 100px 0;
    background-color: #F2F5FC;
}

.six-part h2 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 20px;
    color: #343e51;
}

.class-big {
    margin-top: 50px;
    width: 550px;
    border-radius: 20px;
    background-color: #ffffff;
}
.class-big img{
    border-radius: 20px;
}
.six-part img {
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.six-part p {
    font-size: 20px;
    line-height: 30px;
    color: #9ca9c4;
}
.six-part h6{
    text-align: center;
}
.heading-2 {
    padding: 30px;
}

.heading-2 h3 {
    color: #3377FF;
    font-size: 22.5px;
    font-weight: 500;
}

.heading-2 h4 {
    color: #cacaca;
    font-size: 18px;
    text-align: left;
    font-weight: 400;
    margin: 20px 0;
}

.heading-2 p {
    color: #777777;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: justify;
}

.flex2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10px;
}

.flex2 a {
    font-size: 20px;
    font-weight: 500;
    color: #9c9c9c;
    transition: all.5s;
    margin-left: -3%;
}

.flex2 a i {
    font-size: 20px;
    color: #3377FF;
    margin-left: 8px;
}

.flex2 a:hover {
transform: translate(8px);
    transition: all.5s;
}

/* seven-part */

.seven-part h2 {
    font-size: 45px;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: 1px;
    color: #343e51;
    text-align: center;
}

.seven-part p {
    margin: 30px 0;
    text-align: center;
    font-size: 20px;
    color: #969696;
    font-weight: 400;
}

.flex3 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.get-started {
    margin-top: 50px;
    margin-bottom: 70px;
    font-size: 18px;
    font-weight: 500;
    display: block;
    color: #fff;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: linear-gradient(to right, #ffffff 50%, #3377FF 70%);
    border: 1px solid #3377FF;
    border-radius: 5px;
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .5s;
}

.get-started:hover {
    background-position: left bottom;
    color: #3377FF;
    transition: all .5s;
    border: 1px solid #3377FF;

}

.side {
    margin-right: 2%;
}

.circle {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0px 10px 20px 5px #dbebff;
    text-align: center;
    line-height: 80px;
    margin-top: 40px;
    margin-bottom: 70px;
    animation: beat .5s infinite;
}

.circle i {
    font-size: 16px;
    color: #3377FF;
}

@keyframes beat {
    0% {
        transform: scale(0.98);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(0.98);
    }
}

/* footer */
.footer {
    background-color: #343e51;
    padding: 50px 0;
    height: auto;

}

.footer img {
    width: 150px;
    margin-bottom: 30px;
}

.footer li {
    margin-block: 7px;
    text-align: left;
}

.footer li i {
    color: #cacaca;
    font-size: 18px;
}

.footer li {
    display: block;
}

.footer li a {
    font-size: 18px;
    font-size: 500;
    color: #cacaca;
    margin-left: 5px;
    position: relative;
    transition: all .5s ease-out;
}

.footer li a::before{
    position: absolute;
    content: "";
    width: 0%;
    height: 2px;
    top: 115%;
    display: block;
    background: linear-gradient(to right, #3377FF 50%, #778bb3 50%);
    background-position: right bottom;
    background-size: 200% 100%;
}
.footer li a:hover::before{
    background-position: left bottom;
    transition: all .5s ease-out;
    margin-left: 5px;
    width: 100%;
}
.footer h2 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #778bb3;
    text-align: left;
}
.gap {
    margin-left: 12%;
}
.big-box1 {
    position: relative;
    display: flex;
}
.icon i {
    color: #3377FF;
    font-size: 25px;
    position: absolute;
    top: 20%;
    left: 85%;
}


.input-e{
    width: 100%;
    height: 45px;
    border-radius: 5px;
    border: transparent;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding-left: 9px;
    color: #323944;
}
.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    border: 1px solid #C9DAF6;
    text-align: center;
    margin-top: 40px;
    margin-left: 5px;
}

.social-circle i {
    line-height: 40px;
    font-size: 20px;
    color: #C9DAF6;
    transition: all .3s;
}
.social-circle:hover:first-child i{
    color: #3377FF;
    transition: all .3s;
} 
.social-circle:hover:nth-child(2) i{
    color: #F70000;
    transition: all .3s;
}
.social-circle:hover:nth-child(3) i{
    color: #007AB5;
    transition: all .3s;
}
.social-circle:hover:last-child i{
    color: #CD2E8A;
    transition: all .3s;
}
/* last-footer */

.last-footer {
    background-color: #212834;
    padding: 20px 0;
}

.last-footer h6 {
    text-align: center;
}

.last-footer i {
    font-size: 16px;
    color: #bcbcbc;
    margin-right: 5px;
}

.last-footer a {
    font-size: 16px;
    color: #bcbcbc;
    font-weight: 400;
}
